HTMLify
index.html
Views: 401 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" href="style.css" /> <title>Live User Filter</title> </head> <body> <div class="container"> <header class="header"> <h4 class="title">Live User Filter</h4> <small class="subtitle">Search by name and/or location</small> <input type="text" name="filter" id="filter" placeholder="Search" /> </header> <ul id="result" class="user-list"> <li><h3>Loading...</h3></li> </ul> </div> <script src="script.js"></script> </body> </html> |